*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family:'Josefin Sans', sans-serif;

}
section{
    padding: 40px 15%;

}
.Contact{
    background: #101010;
    height: 100%;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    align-items: center;
    grid-gap: 6rem;
}
.Contact-img img{
    max-width: 100%;
    width: 720px;
    height: auto;
    border-radius: 10px;

} 

.Contact-form h1{
    font-size:80px ;
    color: white;
    margin-bottom: 20px;

}
span{
    color: #f9004d;

}
.Contact-form p{
    color: #c6c9d8bf;
    letter-spacing: 0.5px;
    line-height: 26px;
    font-size: 1.2rem;
    margin-bottom: 3.8rem;
    

}

.Contact-form form{
    position: relative;

}

.Contact-form form input,
form textarea{
    width: 100%;
    padding: 17px;
    border: none;
    outline: none;
    background: #191919;
    color:#fff ;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    border-radius: 10px;
        
}

.Contact-form textarea{
    resize: none;
    height: 200px;

}

.Contact-form form .btn{
    display: inline-block;
    background: #f9004d;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 10px;
    width: 220px;
    transition: ease .20s;
    cursor: pointer;


}

.Contact-form form .btn:hover{
    border: 2px solid #f9004d;
    background: transparent;
    transform: scale(1.1);

}

@media (max-width: 1570px){
    section{
        padding: 80px 3%;
        transition: .2s;
    }
    .Contact-form h1{
        font-size: 60px;
    }

    .Contact-form p{
        margin-bottom: 3rem;
    }
   
}
@media (max-width: 1090px){
    .Contact{
    grid-gap:2rem;
    transition: .3s;
}
}
@media (max-width: 1000px){
    .Contact{
        grid-template-columns: 1fr;
    }
    .Contact-form{
        order: 2;
    }
    .Contact-form img{
        max-width: 100%;
        width: 100%;
        height: auto;
        text-align: center;
        margin-bottom: 30px;
        

    }
}

